home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / ABUSESRC.ZIP / AbuseSrc / Makefile.in < prev    next >
Makefile  |  1997-07-07  |  9KB  |  280 lines

  1. # Makefile.in generated automatically by automake 1.2 from Makefile.am
  2.  
  3. # Copyright (C) 1994, 1995, 1996, 1997 Free Software Foundation, Inc.
  4. # This Makefile.in is free software; the Free Software Foundation
  5. # gives unlimited permission to copy, distribute and modify it.
  6.  
  7.  
  8. SHELL = /bin/sh
  9.  
  10. srcdir = @srcdir@
  11. top_srcdir = @top_srcdir@
  12. VPATH = @srcdir@
  13. prefix = @prefix@
  14. exec_prefix = @exec_prefix@
  15.  
  16. bindir = @bindir@
  17. sbindir = @sbindir@
  18. libexecdir = @libexecdir@
  19. datadir = @datadir@
  20. sysconfdir = @sysconfdir@
  21. sharedstatedir = @sharedstatedir@
  22. localstatedir = @localstatedir@
  23. libdir = @libdir@
  24. infodir = @infodir@
  25. mandir = @mandir@
  26. includedir = @includedir@
  27. oldincludedir = /usr/include
  28.  
  29. pkgdatadir = $(datadir)/@PACKAGE@
  30. pkglibdir = $(libdir)/@PACKAGE@
  31. pkgincludedir = $(includedir)/@PACKAGE@
  32.  
  33. top_builddir = .
  34.  
  35. ACLOCAL = @ACLOCAL@
  36. AUTOCONF = @AUTOCONF@
  37. AUTOMAKE = @AUTOMAKE@
  38. AUTOHEADER = @AUTOHEADER@
  39.  
  40. INSTALL = @INSTALL@
  41. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  42. INSTALL_DATA = @INSTALL_DATA@
  43. INSTALL_SCRIPT = @INSTALL_SCRIPT@
  44. transform = @program_transform_name@
  45.  
  46. NORMAL_INSTALL = true
  47. PRE_INSTALL = true
  48. POST_INSTALL = true
  49. NORMAL_UNINSTALL = true
  50. PRE_UNINSTALL = true
  51. POST_UNINSTALL = true
  52. MAKEINFO = @MAKEINFO@
  53. PACKAGE = @PACKAGE@
  54. VERSION = @VERSION@
  55.  
  56. SUBDIRS = imlib abuse
  57. ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
  58. mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
  59. CONFIG_CLEAN_FILES = 
  60. DIST_COMMON =  Makefile.am Makefile.in aclocal.m4 config.guess \
  61. config.sub configure configure.in install-sh missing mkinstalldirs
  62.  
  63.  
  64. DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
  65.  
  66. TAR = gtar
  67. GZIP = --best
  68. default: all
  69.  
  70. .SUFFIXES:
  71. $(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) 
  72.     cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile
  73.  
  74. Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES)
  75.     cd $(top_builddir) \
  76.       && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status
  77.  
  78. $(ACLOCAL_M4):  configure.in 
  79.     cd $(srcdir) && $(ACLOCAL)
  80.  
  81. config.status: $(srcdir)/configure
  82.     $(SHELL) ./config.status --recheck
  83. $(srcdir)/configure: $(srcdir)/configure.in $(ACLOCAL_M4) $(CONFIGURE_DEPENDENCIES)
  84.     cd $(srcdir) && $(AUTOCONF)
  85.  
  86. # This directory's subdirectories are mostly independent; you can cd
  87. # into them and run `make' without going through this Makefile.
  88. # To change the values of `make' variables: instead of editing Makefiles,
  89. # (1) if the variable is set in `config.status', edit `config.status'
  90. #     (which will cause the Makefiles to be regenerated when you run `make');
  91. # (2) otherwise, pass the desired values on the `make' command line.
  92.  
  93. @SET_MAKE@
  94.  
  95. all-recursive install-data-recursive install-exec-recursive \
  96. installdirs-recursive install-recursive uninstall-recursive  \
  97. check-recursive installcheck-recursive info-recursive dvi-recursive:
  98.     @set fnord $(MAKEFLAGS); amf=$$2; \
  99.     for subdir in $(SUBDIRS); do \
  100.       target=`echo $@ | sed s/-recursive//`; \
  101.       echo "Making $$target in $$subdir"; \
  102.       (cd $$subdir && $(MAKE) $$target) \
  103.        || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
  104.     done && test -z "$$fail"
  105.  
  106. mostlyclean-recursive clean-recursive distclean-recursive \
  107. maintainer-clean-recursive:
  108.     @set fnord $(MAKEFLAGS); amf=$$2; \
  109.     rev=''; for subdir in $(SUBDIRS); do rev="$$rev $$subdir"; done; \
  110.     for subdir in $$rev; do \
  111.       target=`echo $@ | sed s/-recursive//`; \
  112.       echo "Making $$target in $$subdir"; \
  113.       (cd $$subdir && $(MAKE) $$target) \
  114.        || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
  115.     done && test -z "$$fail"
  116. tags-recursive:
  117.     list='$(SUBDIRS)'; for subdir in $$list; do \
  118.       (cd $$subdir && $(MAKE) tags); \
  119.     done
  120.  
  121. tags: TAGS
  122.  
  123. ID: $(HEADERS) $(SOURCES)
  124.     here=`pwd` && cd $(srcdir) && mkid -f$$here/ID $(SOURCES) $(HEADERS)
  125.  
  126. TAGS: tags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES)
  127.     tags=; \
  128.     here=`pwd`; \
  129.     list='$(SUBDIRS)'; for subdir in $$list; do \
  130.       test -f $$subdir/TAGS && tags="$$tags -i $$here/$$subdir/TAGS"; \
  131.     done; \
  132.     test -z "$(ETAGS_ARGS)$(SOURCES)$(HEADERS)$$tags" \
  133.       || (cd $(srcdir) && etags $(ETAGS_ARGS) $$tags  $(SOURCES) $(HEADERS) -o $$here/TAGS)
  134.  
  135. mostlyclean-tags:
  136.  
  137. clean-tags:
  138.  
  139. distclean-tags:
  140.     rm -f TAGS ID
  141.  
  142. maintainer-clean-tags:
  143.  
  144. distdir = $(PACKAGE)-$(VERSION)
  145. top_distdir = $(distdir)
  146.  
  147. # This target untars the dist file and tries a VPATH configuration.  Then
  148. # it guarantees that the distribution is self-contained by making another
  149. # tarfile.
  150. distcheck: dist
  151.     rm -rf $(distdir)
  152.     GZIP=$(GZIP) $(TAR) zxf $(distdir).tar.gz
  153.     mkdir $(distdir)/=build
  154.     mkdir $(distdir)/=inst
  155.     dc_install_base=`cd $(distdir)/=inst && pwd`; \
  156.     cd $(distdir)/=build \
  157.       && ../configure --srcdir=.. --prefix=$$dc_install_base \
  158.       && $(MAKE) \
  159.       && $(MAKE) dvi \
  160.       && $(MAKE) check \
  161.       && $(MAKE) install \
  162.       && $(MAKE) installcheck \
  163.       && $(MAKE) dist
  164.     rm -rf $(distdir)
  165.     @echo "========================"; \
  166.     echo "$(distdir).tar.gz is ready for distribution"; \
  167.     echo "========================"
  168. dist: distdir
  169.     -chmod -R a+r $(distdir)
  170.     GZIP=$(GZIP) $(TAR) chozf $(distdir).tar.gz $(distdir)
  171.     rm -rf $(distdir)
  172. dist-all: distdir
  173.     -chmod -R a+r $(distdir)
  174.     GZIP=$(GZIP) $(TAR) chozf $(distdir).tar.gz $(distdir)
  175.     rm -rf $(distdir)
  176. distdir: $(DISTFILES)
  177.     rm -rf $(distdir)
  178.     mkdir $(distdir)
  179.     -chmod 777 $(distdir)
  180.     here=`cd $(top_builddir) && pwd`; \
  181.     top_distdir=`cd $(top_distdir) && pwd`; \
  182.     cd $(top_srcdir) \
  183.       && $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --foreign Makefile
  184.     @for file in $(DISTFILES); do \
  185.       d=$(srcdir); \
  186.       test -f $(distdir)/$$file \
  187.       || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
  188.       || cp -p $$d/$$file $(distdir)/$$file; \
  189.     done
  190.     for subdir in $(SUBDIRS); do        \
  191.       test -d $(distdir)/$$subdir        \
  192.       || mkdir $(distdir)/$$subdir        \
  193.       || exit 1;                \
  194.       chmod 777 $(distdir)/$$subdir;    \
  195.       (cd $$subdir && $(MAKE) top_distdir=../$(top_distdir) distdir=../$(distdir)/$$subdir distdir) \
  196.         || exit 1; \
  197.     done
  198. info: info-recursive
  199. dvi: dvi-recursive
  200. check: all-am
  201.     $(MAKE) check-recursive
  202. installcheck: installcheck-recursive
  203. all-am: Makefile
  204.  
  205. install-exec: install-exec-recursive
  206.     @$(NORMAL_INSTALL)
  207.  
  208. install-data: install-data-recursive
  209.     @$(NORMAL_INSTALL)
  210.  
  211. install: install-recursive
  212.     @:
  213.  
  214. uninstall: uninstall-recursive
  215.  
  216. all: all-recursive all-am
  217.  
  218. install-strip:
  219.     $(MAKE) INSTALL_PROGRAM='$(INSTALL_PROGRAM) -s' INSTALL_SCRIPT='$(INSTALL_PROGRAM)' install
  220. installdirs: installdirs-recursive
  221.  
  222.  
  223. mostlyclean-generic:
  224.     test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES)
  225.  
  226. clean-generic:
  227.     test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
  228.  
  229. distclean-generic:
  230.     rm -f Makefile $(DISTCLEANFILES)
  231.     rm -f config.cache config.log stamp-h stamp-h[0-9]*
  232.     test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
  233.  
  234. maintainer-clean-generic:
  235.     test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
  236.     test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
  237. mostlyclean-am:  mostlyclean-tags mostlyclean-generic
  238.  
  239. clean-am:  clean-tags clean-generic mostlyclean-am
  240.  
  241. distclean-am:  distclean-tags distclean-generic clean-am
  242.  
  243. maintainer-clean-am:  maintainer-clean-tags maintainer-clean-generic \
  244.         distclean-am
  245.  
  246. mostlyclean:  mostlyclean-recursive mostlyclean-am
  247.  
  248. clean:  clean-recursive clean-am
  249.  
  250. distclean:  distclean-recursive distclean-am
  251.     rm -f config.status
  252.  
  253. maintainer-clean:  maintainer-clean-recursive maintainer-clean-am
  254.     @echo "This command is intended for maintainers to use;"
  255.     @echo "it deletes files that may require special tools to rebuild."
  256.     rm -f config.status
  257.  
  258. .PHONY: default install-data-recursive uninstall-data-recursive \
  259. install-exec-recursive uninstall-exec-recursive installdirs-recursive \
  260. uninstalldirs-recursive all-recursive check-recursive \
  261. installcheck-recursive info-recursive dvi-recursive \
  262. mostlyclean-recursive distclean-recursive clean-recursive \
  263. maintainer-clean-recursive tags tags-recursive mostlyclean-tags \
  264. distclean-tags clean-tags maintainer-clean-tags distdir info dvi \
  265. installcheck all-am install-exec install-data install uninstall all \
  266. installdirs mostlyclean-generic distclean-generic clean-generic \
  267. maintainer-clean-generic clean mostlyclean distclean maintainer-clean
  268.  
  269.  
  270. debug:
  271.     $(MAKE) DEFS='-DMANAGE_MEM -DMEM_CHECK' CXXFLAGS=-g
  272. opt:
  273.     $(MAKE) DEFS='-DMANAGE_MEM -DNO_CHECK' CXXFLAGS=-O2
  274. profile:
  275.     $(MAKE) DEFS='-DMANAGE_MEM -DNO_CHECK' CXXFLAGS='-O2 -g -pg'
  276.  
  277. # Tell versions [3.59,3.63) of GNU make to not export all variables.
  278. # Otherwise a system limit (for SysV at least) may be exceeded.
  279. .NOEXPORT:
  280.